|
<HTML> <HEAD> <TITLE>初めてのホームページ作成</TITLE> <SCRIPT language="JavaScript"> <!-- var yy=300; function showpicture(){ if(yy>0){ yy=yy-1; document.getElementById('kakusu').style.top=300-yy; document.getElementById('kakusu').style.height=yy; setTimeout('showpicture()',20); } else{ document.getElementById('info').innerHTML='<FONT color="#FFFFFF">complete!</FONT>'; } } //--> </SCRIPT> </HEAD> <BODY onLoad="showpicture()"> <DIV style="position:relative; top:0px; left:0px ; height:350px"> <IMG src="img01.jpg" style="position:absolute; left:0px; top:0px; z-index:1"> <DIV id="kakusu" style="position:absolute; left:0px; top:0px; z-index:2; width:400px; height:300px; background:#000000"> </DIV> <DIV id="info" style="position:absolute; left:0px; top:300px; z-index:3; width:400px; background:#000000"> <FONT color="#FFFFFF">now loading...</FONT> </DIV> </DIV> </BODY> </HTML> |